Kameradan çektiğiniz fotoğrafı bitmap formatından byte arraye dönüştürerek boyutunu öğrenebilirsiniz.
Örnek:
Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(),R.drawable.ic_launcher);
Bitmap bitmap = bitmapOrg;
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte[] imageInByte = stream.toByteArray();
long lengthbmp = imageInByte.length;
Kaynak: https://stackoverflow.com/questions/9316986/how-to-get-the-size-of-an-image-in-android